home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / FlyThrough 1.1.2 / src / Source / QD3D General Tools / CDrawContextMaker.h < prev    next >
Encoding:
Text File  |  1996-06-25  |  363 b   |  19 lines  |  [TEXT/CWIE]

  1. //
  2. //    CDrawContextMaker.h
  3. //
  4.  
  5. #pragma once
  6.  
  7. #include "CObjectMaker.h"
  8.  
  9. class CDrawContextMaker : public CObjectMaker<TQ3DrawContextObject> {
  10. public:
  11.                     CDrawContextMaker( CGrafPtr inWindow, Rect &inFrame );
  12.     virtual void    SetClearImageColor(TQ3ColorARGB &inColor);
  13. protected:
  14.     virtual void    Make();
  15.     
  16.     TQ3MacDrawContextData    mData;
  17. //    TQ3ColorARGB mClearColor;
  18. };
  19.